Implement MCP Studio Bridge Architecture with API and UI Integration#257
Open
Adversing wants to merge 2 commits into
Open
Implement MCP Studio Bridge Architecture with API and UI Integration#257Adversing wants to merge 2 commits into
Adversing wants to merge 2 commits into
Conversation
…me, API endpoints, project remote management, and UI integration.
|
@Adversing is attempting to deploy a commit to the dumbcodeteam-5439's projects Team on Vercel. A member of the Team first needs to authorize it. |
…ing function and handling visibility more effectively
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new Model Context Protocol (MCP) server package for DumbCode Studio and implements a robust REST bridge in the Studio app for communication with MCP clients. The main changes include the addition of a standalone MCP server (
dumbcode-studio-mcp), a comprehensive REST API in Studio for MCP tool calls, and supporting infrastructure for command queuing, client management, and authentication. It serves as a tangible enhancement in productivity within the DumbCode ecosystem by using Generative AI Models directly into the Studio sandbox.New MCP server package and Studio REST bridge:
dumbcode-studio-mcpinapps/mcp-serverthat exposes DumbCode Studio as an MCP server, forwarding tool calls to the Studio REST bridge and supporting bearer token authentication. Includes documentation and configuration instructions.Studio REST API for MCP:
apps/studio/pages/api/mcp/for MCP command execution, action schema discovery, health checks, client polling, and result reporting. These endpoints support secure, queued command execution between the MCP server and browser-based Studio clients.MCP command and client state management:
_state.ts) that handles command queuing, client registration, command leasing, timeout handling, and authentication for the REST bridge. Provides utility functions for all aspects of MCP command lifecycle.